home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / email / base64mime.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  5KB  |  159 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. """Base64 content transfer encoding per RFCs 2045-2047.
  5.  
  6. This module handles the content transfer encoding method defined in RFC 2045
  7. to encode arbitrary 8-bit data using the three 8-bit bytes in four 7-bit
  8. characters encoding known as Base64.
  9.  
  10. It is used in the MIME standards for email to attach images, audio, and text
  11. using some 8-bit character sets to messages.
  12.  
  13. This module provides an interface to encode and decode both headers and bodies
  14. with Base64 encoding.
  15.  
  16. RFC 2045 defines a method for including character set information in an
  17. `encoded-word' in a header.  This method is commonly used for 8-bit real names
  18. in To:, From:, Cc:, etc. fields, as well as Subject: lines.
  19.  
  20. This module does not do the line wrapping or end-of-line character conversion
  21. necessary for proper internationalized headers; it only does dumb encoding and
  22. decoding.  To deal with the various line wrapping issues, use the email.Header
  23. module.
  24. """
  25. __all__ = [
  26.     'base64_len',
  27.     'body_decode',
  28.     'body_encode',
  29.     'decode',
  30.     'decodestring',
  31.     'encode',
  32.     'encodestring',
  33.     'header_encode']
  34. import re
  35. from binascii import b2a_base64, a2b_base64
  36. from email.utils import fix_eols
  37. CRLF = '\r\n'
  38. NL = '\n'
  39. EMPTYSTRING = ''
  40. MISC_LEN = 7
  41.  
  42. def base64_len(s):
  43.     '''Return the length of s when it is encoded with base64.'''
  44.     (groups_of_3, leftover) = divmod(len(s), 3)
  45.     n = groups_of_3 * 4
  46.     if leftover:
  47.         n += 4
  48.     
  49.     return n
  50.  
  51.  
  52. def header_encode(header, charset = 'iso-8859-1', keep_eols = False, maxlinelen = 76, eol = NL):
  53.     '''Encode a single header line with Base64 encoding in a given charset.
  54.  
  55.     Defined in RFC 2045, this Base64 encoding is identical to normal Base64
  56.     encoding, except that each line must be intelligently wrapped (respecting
  57.     the Base64 encoding), and subsequent lines must start with a space.
  58.  
  59.     charset names the character set to use to encode the header.  It defaults
  60.     to iso-8859-1.
  61.  
  62.     End-of-line characters (\\r, \\n, \\r\\n) will be automatically converted
  63.     to the canonical email line separator \\r\\n unless the keep_eols
  64.     parameter is True (the default is False).
  65.  
  66.     Each line of the header will be terminated in the value of eol, which
  67.     defaults to "\\n".  Set this to "\\r\\n" if you are using the result of
  68.     this function directly in email.
  69.  
  70.     The resulting string will be in the form:
  71.  
  72.     "=?charset?b?WW/5ciBtYXp66XLrIHf8eiBhIGhhbXBzdGHuciBBIFlv+XIgbWF6euly?=\\n
  73.       =?charset?b?6yB3/HogYSBoYW1wc3Rh7nIgQkMgWW/5ciBtYXp66XLrIHf8eiBhIGhh?="
  74.  
  75.     with each line wrapped at, at most, maxlinelen characters (defaults to 76
  76.     characters).
  77.     '''
  78.     if not header:
  79.         return header
  80.     
  81.     if not keep_eols:
  82.         header = fix_eols(header)
  83.     
  84.     base64ed = []
  85.     max_encoded = maxlinelen - len(charset) - MISC_LEN
  86.     max_unencoded = max_encoded * 3 // 4
  87.     for i in range(0, len(header), max_unencoded):
  88.         base64ed.append(b2a_base64(header[i:i + max_unencoded]))
  89.     
  90.     lines = []
  91.     for line in base64ed:
  92.         if line.endswith(NL):
  93.             line = line[:-1]
  94.         
  95.         lines.append('=?%s?b?%s?=' % (charset, line))
  96.     
  97.     joiner = eol + ' '
  98.     return joiner.join(lines)
  99.  
  100.  
  101. def encode(s, binary = True, maxlinelen = 76, eol = NL):
  102.     '''Encode a string with base64.
  103.  
  104.     Each line will be wrapped at, at most, maxlinelen characters (defaults to
  105.     76 characters).
  106.  
  107.     If binary is False, end-of-line characters will be converted to the
  108.     canonical email end-of-line sequence \\r\\n.  Otherwise they will be left
  109.     verbatim (this is the default).
  110.  
  111.     Each line of encoded text will end with eol, which defaults to "\\n".  Set
  112.     this to "\r
  113. " if you will be using the result of this function directly
  114.     in an email.
  115.     '''
  116.     if not s:
  117.         return s
  118.     
  119.     if not binary:
  120.         s = fix_eols(s)
  121.     
  122.     encvec = []
  123.     max_unencoded = maxlinelen * 3 // 4
  124.     for i in range(0, len(s), max_unencoded):
  125.         enc = b2a_base64(s[i:i + max_unencoded])
  126.         if enc.endswith(NL) and eol != NL:
  127.             enc = enc[:-1] + eol
  128.         
  129.         encvec.append(enc)
  130.     
  131.     return EMPTYSTRING.join(encvec)
  132.  
  133. body_encode = encode
  134. encodestring = encode
  135.  
  136. def decode(s, convert_eols = None):
  137.     '''Decode a raw base64 string.
  138.  
  139.     If convert_eols is set to a string value, all canonical email linefeeds,
  140.     e.g. "\\r\\n", in the decoded text will be converted to the value of
  141.     convert_eols.  os.linesep is a good choice for convert_eols if you are
  142.     decoding a text attachment.
  143.  
  144.     This function does not parse a full MIME header value encoded with
  145.     base64 (like =?iso-8895-1?b?bmloISBuaWgh?=) -- please use the high
  146.     level email.Header class for that functionality.
  147.     '''
  148.     if not s:
  149.         return s
  150.     
  151.     dec = a2b_base64(s)
  152.     if convert_eols:
  153.         return dec.replace(CRLF, convert_eols)
  154.     
  155.     return dec
  156.  
  157. body_decode = decode
  158. decodestring = decode
  159.